home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * Although this printer driver does not do spool printing, I provide
- * a duplicate PDEF to pretend to do so. That is just a copy of my PDEF 0,
- * and it really does draft printing. This module is so the application can
- * call PrPicFile() when it is done. Some applications just don't get the
- * hint, and attempt to spool print even when the print record says
- * otherwise.
- */
- #include "prglobals.h"
- pascal void myPrPicFile();
- main()
- {
- asm{
- dc.w ILLEGAL
- jmp myPrPicFile
- }
- }
- pascal void myPrPicFile(hPrint,pPrPort,pIOBuf,pDevBuf,prStatus)
- THPrint hPrint;
- TPPrPort pPrPort;
- Ptr pIOBuf,pDevBuf;
- TPrStatus *prStatus;
- {
- }
-